VintaSoft Imaging .NET SDK 15.1: Documentation for .NET developer
Vintasoft.Imaging.Pdf Namespace / PdfPageDigitalSignatureHelper Class / SignDocument Methods / SignDocument(String,Int32,PdfPageDigitalSignatureHelper[]) Method
Syntax Requirements SeeAlso
In This Topic
    SignDocument(String,Int32,PdfPageDigitalSignatureHelper[]) Method (PdfPageDigitalSignatureHelper)
    In This Topic
    Adds digital signature(s) to a PDF page and saves document as a PDF document.
    Syntax
    'Declaration
    
    Public Overloads Shared Sub SignDocument( _
    ByVal filename
    The name of input PDF file.
    As System.String, _
    ByVal pageIndex
    The zero-based index of PDF page, where digital signature(s) must be added.
    As System.Int32, _
    ByVal ParamArray digitalSignatureHelpers
    The helpers, which help to add digital signatures to a PDF document.
    () As PdfPageDigitalSignatureHelper _
    )
    public static void SignDocument(
    System.String filename,
    System.Int32 pageIndex,
    params PdfPageDigitalSignatureHelper[] digitalSignatureHelpers
    )
    public: static void SignDocument(
    System.String filename,
    System.Int32 pageIndex,
    params PdfPageDigitalSignatureHelper*[]* digitalSignatureHelpers
    )
    public:
    static void SignDocument(
    System.String filename,
    System.Int32 pageIndex,
    ... array<PdfPageDigitalSignatureHelper^>^ digitalSignatureHelpers
    )

    Parameters

    filename
    The name of input PDF file.
    pageIndex
    The zero-based index of PDF page, where digital signature(s) must be added.
    digitalSignatureHelpers
    The helpers, which help to add digital signatures to a PDF document.
    Requirements

    Target Platforms: .NET 10; .NET 9; .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also